Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
axios-proxy-builder
Advanced tools
A simple utility to build an axios proxy request object from env's
A simple utility to build an axios proxy request object from standard http proxy environmental variables.
NoProxy logic inspired by the (now deprecated) Request project: https://github.com/request/request/blob/3c0cddc7c8eb60b470e9519da85896ed7ee0081e/lib/getProxyFromURI.js
Set proxy address as well as no proxy whitelist to your environmental variables:
HTTP_PROXY-http://test.com:8000
http_proxy
HTTPS_PROXY=https://test.com:8000
https_proxy
NO_PROXY=example.test.com,example2.test.com
Add the configureProxy
method to your project and pass in the request url to get back a proxy object that can be added to any axios request.
import { configureProxy } from "axios-proxy-builder";
const requestURL = "https://request-url.com/resource";
const proxy = configureProxy(requestURL);
// make REST call
axios({ ...proxy, url: requestURL });
FAQs
A simple utility to build an axios proxy request object from env's
The npm package axios-proxy-builder receives a total of 145,564 weekly downloads. As such, axios-proxy-builder popularity was classified as popular.
We found that axios-proxy-builder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.